home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / netz / amislate / examplerexx / easyreq.rexx < prev    next >
OS/2 REXX Batch file  |  1995-08-05  |  309b  |  10 lines

  1. /* An ARexx program demonstrating AmiSlate's EasyRequest function */
  2. parse arg CommandPort ActiveString
  3.  
  4. address (CommandPort)
  5. options results
  6.  
  7. EasyRequest '"'||"AmiSlate REXX Requester"||'"' '"'||"Please pick a number"||'"' "1|2|3|4|5|0"
  8. EasyRequest "Answer" '"'||"You picked option number "||rc||'"' "Yup"
  9.  
  10.